iT邦幫忙

2024 iThome 鐵人賽

0
Python

30日自學Python系列 第 29

練習2

  • 分享至 

  • xImage
  •  

輸入一個字串,將字串中的特定片段用另一個字串取代,最後將字串反轉。

def replaceAndReverse(original,toReplace,replacement):
    #字串取代
    while toReplace in original:
        original = original.replace(toReplace, replacement)
    #反轉字串
    reversed_string = original[::-1]
    results = reversed_string
    return results

#輸入
original = input("原始字串: ")
toReplace = input("被取代的字串: ")
replacement = input("取代用的字串: ")
#輸出
print(replaceAndReverse(original, toReplace, replacement))

input:
BA122DC12FE
12
31

output:
EF13CD133AB


上一篇
練習1
下一篇
練習3
系列文
30日自學Python30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言